curl --request POST \
--url https://api-lr.agent.ai/v1/action/meeting_prep_extract_selected_meeting \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"selected_meeting_id": "{{selected_meeting_id}}",
"gcal_events_list": "{{gcal_events_list}}",
"output_variable_name": "selected_meeting_data"
}
'{
"status": 123,
"response": {}
}Extracts the selected meeting details from a list of Google Calendar events based on the meeting ID.
curl --request POST \
--url https://api-lr.agent.ai/v1/action/meeting_prep_extract_selected_meeting \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"selected_meeting_id": "{{selected_meeting_id}}",
"gcal_events_list": "{{gcal_events_list}}",
"output_variable_name": "selected_meeting_data"
}
'{
"status": 123,
"response": {}
}Bearer token from your account (https://agent.ai/user/integrations#api)
The event ID to look up from the calendar events list.
JSON array of events with {value, label} format from Google Calendar.
Variable name to store the extracted meeting data.